home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-08-07 | 499 b | 27 lines |
- #/***************************************************************************
- # * smakefile
- # *
- # * Makefile for Erase
- # *
- # * August 1995, ©Lee Kindness. All rights reserved.
- # *
- # */
-
- OBJS= Erase.o
-
- Erase: $(OBJS)
- sc NOCHECKABORT link to Erase with <<
- $(OBJS)
- <
-
- Erase.o: Erase.c scoptions INCLUDE:Erase.gst
- sc Erase.c GST=INCLUDE:Erase.gst NOLINK
-
- INCLUDE:Erase.gst: gst.c scoptions smakefile
- sc gst.c MAKEGST=INCLUDE:Erase.gst IGNORE=105 NOOPTIMIZE
- delete gst.o
-
- dist:
- execute makedist
-
-